home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / pof11 / pof.txt < prev    next >
Text File  |  1993-06-09  |  3KB  |  90 lines

  1.  
  2.       
  3.                              POF! - Plenty Of Files
  4.                         Yet Another File Listing Utility  
  5.                         
  6.                                    November 92
  7.                                   
  8.                       *** PUBLIC DOMAIN AND UNSUPPORTED ***
  9.                         
  10.  
  11. >>> WHAT?
  12. ---------
  13.  
  14.     POF! is a filelister for LazyBBS, it produces the master list of files 
  15.     of your board. The list can be put for download for users, and/or be
  16.     requestable under the FILES fidonet magic freq name.
  17.  
  18.     It was written for use with LazyBBS, but can be used with for any 
  19.     board using FILES.BBS like download areas. LazyBBS is Fidonet BBS 
  20.     software for a Pandora message base, currently available on Unix
  21.     and Atari STs.
  22.  
  23.     To port it, look at the beginning pof.c for defines... and compile 
  24.     pof.c. Unix users don't forget to convert crlf text files to lf files 
  25.     if your copy comes from with crlf.
  26.     
  27.  
  28. >>> HOW?
  29. --------
  30.     
  31.     You call _pof_ with the configuration file on the command line, and 
  32.     the output will be sent to stdout (the console as default, can/should 
  33.     be redirected).
  34.     
  35.     Command line options:
  36.  
  37.     -d<days>      (NOT -d <days>) may be used to produce a list of only 
  38.                   recent files.
  39.  
  40.     -l<logfile>   log errors and filelist report to a standard fido log
  41.  
  42.     
  43.     Example: pof pof.cfg >allfile.txt
  44.              pof -d30 pof.cfg >lastmonth.txt
  45.              pof -lpof.log another.pof >another.txt
  46.              
  47.     The format of the pof.cfg file is:
  48.     
  49.     - Any line beginning with ; is a comment
  50.     
  51.     - Any line beginning with @ or # is a control line:
  52.         
  53.         @<file>     file to be included
  54.         #<comment>  comment to be included in the output
  55.         
  56.     - Any line not beginning with ; or # or @ is a path to be scanned.
  57.     
  58.     Example:
  59.     -----<cut>----------------<cut>----------------<cut>--------
  60.     ;
  61.     ; Sample POF config
  62.     ;
  63.     ; now insert my BBS desc
  64.     @/usr/bbs/ads/mybbs.txt
  65.     #
  66.     # The Filelist of Local Things
  67.     # ----------------------------
  68.     #
  69.     ; now scan FILES.BBS and fancy display list
  70.     /usr/bbs/download/atari
  71.     /usr/bbs/download/linux-for-crays
  72.     ; other files and comments now
  73.     #
  74.     # File Distribution Network
  75.     # -------------------------
  76.     #
  77.     /usr/bbs/download/winnet
  78.     /usr/bbs/download/craynet
  79.     ; this is the end
  80.     -----<cut>----------------<cut>----------------<cut>--------
  81.     
  82.  
  83. >>> WHO?
  84. --------
  85.  
  86.     This software is public domain. 
  87.     It can be copied and sold (yes!) freely.
  88.     Originally written by Franck Arnaud.
  89.     
  90.